DevJourney

Qwik/Sample Firebase App/src/components/infobox/infobox.tsx

import { Slot, component$ } from "@builder.io/qwik";
import styles from "./infobox.module.css";

export default component$(() => {
  return (
    <div class={styles.infobox}>
      <h3>
        <Slot name="title" />
      </h3>
      <Slot />
    </div>
  );
});
View on GitHub